home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / crh_n.arc / NANSI_D.ASM < prev    next >
Assembly Source File  |  1987-02-06  |  445b  |  19 lines

  1. ;---- nansi_d.asm -----------------
  2. ; Definitions for the new ANSI driver.
  3. ; (C) 1986 Daniel Kegel
  4. ; May be distributed for educational and personal use only
  5.  
  6. takeBIOS    equ    0    ; take over BIOS write_tty if true
  7. is_8088        equ    1    ; no fancy instructions if true
  8. cls_homes_too    equ    1    ; set true for ANSI.SYS compatibility
  9.  
  10. ;Comment this out if running MASM 1.0
  11.  
  12.     if    is_8088
  13.         .8086
  14.     else
  15.         .286c
  16.     endif
  17.  
  18. ;---- end of nansi_d.asm ----
  19.